home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / util / batch / WaitSignal.lha / WaitSignal / examples / Demo1child < prev   
Encoding:
AmigaDOS Script File  |  1998-09-20  |  300 b   |  16 lines

  1. .key PARENT/A
  2. .bra {
  3. .ket }
  4.  
  5. ; $VER Demo1sub 1.0 (20.9.98)
  6.  
  7. echo "(Child) - This is the child process. My process number is $process."
  8. echo "(Child) - Going to wait for 10 seconds..."
  9.  
  10. wait SECS=10
  11.  
  12. echo "(Child) - Sending CTRL-F to parent process and terminating."
  13. echo "{PARENT}"
  14. Break {PARENT} F
  15.  
  16.